home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / ingres04.lzh / doc / error / 05dbu.doc < prev   
Encoding:
Text File  |  1992-11-19  |  13.6 KB  |  381 lines

  1.  
  2.  
  3.  
  4.  
  5.      DBU(ERROR)                   3/30/79                   DBU(ERROR)
  6.  
  7.  
  8.  
  9.      NAME
  10.           Data Base Utility error message summary
  11.  
  12.      SYNOPSIS
  13.           Error numbers 5000 - 5999
  14.  
  15.      DESCRIPTION
  16.           The Data Base Utility functions  perform  almost  all  tasks
  17.           which  are  not directly associated with processing queries.
  18.           The error messages which they can generate result from  some
  19.           syntax checking and a considerable amount of semantic check-
  20.           ing.
  21.  
  22.      ERRORS
  23.           5001    PRINT: bad relation name %0
  24.  
  25.                   You are trying to print a relation which doesn't ex-
  26.                   ist.
  27.  
  28.           5002    PRINT: %0 is a view and can't be printed
  29.  
  30.                   The only way to print a view is by retrieving it.
  31.  
  32.           5003    PRINT: Relation %0 is protected.
  33.  
  34.                   You are not authorized to access this relation.
  35.  
  36.           5102    CREATE: duplicate relation name %0
  37.  
  38.                   You are trying to create a  relation  which  already
  39.                   exists.
  40.  
  41.           5103    CREATE: %0 is a system relation
  42.  
  43.                   You cannot create a relation with the same name as a
  44.                   system  relation.   The  system  depends on the fact
  45.                   that the system relations are unique.
  46.  
  47.           5104    CREATE %0: invalid attribute name %1
  48.  
  49.                   This will happen if you try  to  create  a  relation
  50.                   with an attribute longer than 12 characters.
  51.  
  52.           5105    CREATE %0: duplicate attribute name %1
  53.  
  54.                   Attribute names in a relation must be  unique.   You
  55.                   are trying to create one with a duplicated name.
  56.  
  57.           5106    CREATE %0: invalid attribute format "%2"  on  attri-
  58.                   bute %1
  59.  
  60.                   The allowed formats for a domain  are  c1-c255,  i1,
  61.                   i2,  i4,  f4 and f8.  Any other format will generate
  62.                   this error.
  63.  
  64.           5107    CREATE %0: excessive domain count on attribute %1
  65.  
  66.                   A relation cannot have more than  49  domains.   The
  67.                   origin  of  this  magic  number is obscure.  This is
  68.                   very difficult to change.
  69.  
  70.           5108    CREATE %0: excessive relation width on attribute %1
  71.  
  72.                   The maximum number of bytes allowed in  a  tuple  is
  73.                   1010.   This  results from the decision that a tuple
  74.                   must fit on one UNIX "page".  Assorted pointers  re-
  75.                   quire  the  14 bytes which separates 1010 from 1024.
  76.                   This "magic number" is very hard to change.
  77.  
  78.           5201    DESTROY: %0 is a system relation
  79.  
  80.                   The system would immediately  stop  working  if  you
  81.                   were allowed to do this.
  82.  
  83.           5202    DESTROY: %0 does not exist or is not owned by you
  84.  
  85.                   To destroy a relation, it must exist, and  you  must
  86.                   own it.
  87.  
  88.           5203    DESTROY: %0 is an invalid integrity constraint iden-
  89.                   tifier
  90.  
  91.                   Integers given do not identify integrity constraints
  92.                   on the specified relation.  For example: If you were
  93.                   to type "destroy permit parts 1, 2, 3", and 1, 2, or
  94.                   3  were  not  the numbers "help permit parts" prints
  95.                   out for permissions on parts, you would get this er-
  96.                   ror.
  97.  
  98.           5204    DESTROY: %0  is  an  invalid  protection  constraint
  99.                   identifier
  100.  
  101.                   Integers  given  do  not  identify  protection  con-
  102.                   straints  on the specified relation.  Example as for
  103.                   error 5203.
  104.  
  105.           5300    INDEX: cannot find primary relation
  106.  
  107.                   The relation does not exist - check your spelling.
  108.  
  109.           5301    INDEX: more than maximum number of domains
  110.  
  111.                   A secondary index can be  created  on  at  most  six
  112.                   domains.
  113.  
  114.           5302    INDEX: invalid domain %0
  115.  
  116.                   You have tried to create an index on a domain  which
  117.                   does not exist.
  118.  
  119.           5303    INDEX: relation %0 not owned by you
  120.  
  121.                   You must own relations to put indicies on them.
  122.  
  123.           5304    INDEX: relation %0 is already an index
  124.  
  125.                   INGRES does not permit tertiary indicies.
  126.  
  127.           5305    INDEX: relation %0 is a system relation
  128.  
  129.                   Secondary indices cannot be created on system  rela-
  130.                   tions.
  131.  
  132.           5306    INDEX: %0 is a view and an index can't be  built  on
  133.                   it
  134.  
  135.                   Since views are not physically stored in  the  data-
  136.                   base, you cannot build indicies on them.
  137.  
  138.           5401    HELP: relation %0 does not exist
  139.  
  140.           5402    HELP: cannot find manual section "%0"
  141.  
  142.                   Either the desired manual section does not exist, or
  143.                   your system does not have any on-line documentation.
  144.  
  145.           5403    HELP: relation %0 is not a view
  146.  
  147.                   Did a "help view" (which prints view definition)  on
  148.                   a  nonview.   For  example:  "help  view  overpaidv"
  149.                   prints out overpaidv's view definition.
  150.  
  151.           5404    HELP: relation %0 has no permissions on it granted
  152.           5405    HELP: relation %0 has no integrity constraints on it
  153.  
  154.                   You have tried to print the permissions or integrity
  155.                   constraints on a relation which has none specified.
  156.  
  157.           5410    HELP: tree buffer overflowed
  158.           5411    HELP: tree stack overflowed
  159.  
  160.                   Still more buffer overflows.
  161.  
  162.           5500    MODIFY: relation %0 does not exist
  163.  
  164.           5501    MODIFY: you do not own relation %0
  165.  
  166.                   You cannot modify the storage structure of  a  rela-
  167.                   tion you do not own.
  168.  
  169.           5502    MODIFY %0: you may not provide keys on a heap
  170.  
  171.                   By definition, heaps do not have keys.
  172.  
  173.           5503    MODIFY %0: too many keys provided
  174.  
  175.                   You can only have 49 keys on any relation.
  176.  
  177.           5504    MODIFY %0: cannot modify system relation
  178.  
  179.                   System relations can only be modified by  using  the
  180.                   _s_y_s_m_o_d command to the shell; for example
  181.  
  182.                           sysmod _d_b_n_a_m_e
  183.  
  184.           5507    MODIFY %0: duplicate key "%1"
  185.  
  186.                   You may only specify a domain as a key once.
  187.  
  188.           5508    MODIFY %0: key width (%1) too large for isam
  189.  
  190.                   When modifying a relation to isam, the  sum  of  the
  191.                   width of the key fields cannot exceed 245 bytes.
  192.  
  193.           5510    MODIFY %0: bad storage structure "%1"
  194.  
  195.                   The valid storage structure names are  heap,  cheap,
  196.                   isam, cisam, hash, and chash.
  197.  
  198.           5511    MODIFY %0: bad attribute name "%1"
  199.  
  200.                   You have specified an attribute that does not  exist
  201.                   in the relation.
  202.  
  203.           5512    MODIFY %0: "%1" not allowed or specified  more  than
  204.                   once
  205.  
  206.                   You have specified a parameter which conflicts  with
  207.                   another  parameter, is inconsistant with the storage
  208.                   mode, or which has already been specified.
  209.  
  210.           5513    MODIFY %0: fillfactor value %1 out of bounds
  211.  
  212.                   _F_i_l_l_f_a_c_t_o_r must be between 1 and 100 percent.
  213.  
  214.           5514    MODIFY %0: minpages value %1 out of bounds
  215.                   _M_i_n_p_a_g_e_s must be greater than zero.
  216.  
  217.           5515    MODIFY %0: "%1" should be "fillfactor",  "maxpages",
  218.                   or "minpages"
  219.  
  220.                   You have specified an unknown parameter to _m_o_d_i_f_y.
  221.  
  222.           5516    MODIFY %0: maxpages value %1 out of bounds
  223.  
  224.           5517    MODIFY %0: minpages value exceeds maxpages value
  225.  
  226.           5518    MODIFY  %0:  invalid  sequence  specifier  "%1"  for
  227.                   domain %2.
  228.  
  229.                   Sequence specifier may be ``ascending''  (or  ``a'')
  230.                   or ``descending'' (or ``d'') in a _m_o_d_i_f_y.  For exam-
  231.                   ple:
  232.  
  233.                           modify parts to heapsort on
  234.                                  pnum:ascending,
  235.                                  pname:descending
  236.  
  237.           5519    MODIFY: %0 is a view and can't be modified
  238.  
  239.                   Only physical relations can be modified.
  240.  
  241.           5520    MODIFY: %0: sequence specifier "%1" on domain %2  is
  242.                   not allowed with the specified storage structure.
  243.  
  244.                   Sortorder may be supplied  only  when  modifying  to
  245.                   _h_e_a_p_s_o_r_t or _c_h_e_a_p_s_o_r_t.
  246.  
  247.           5600    SAVE: cannot save system relation "%0"
  248.  
  249.                   System  relations  have  no  save   date   and   are
  250.                   guaranteed  to  stay  for  the  lifetime of the data
  251.                   base.
  252.  
  253.           5601    SAVE: bad month "%0"
  254.           5602    SAVE: bad day "%0"
  255.           5603    SAVE: bad year "%0"
  256.  
  257.                   This was a bad month, bad day, or maybe even  a  bad
  258.                   year for INGRES.
  259.  
  260.           5604    SAVE: relation %0 does not exist or is not owned  by
  261.                   you
  262.  
  263.           5800    COPY: relation %0 doesn't exist
  264.  
  265.           5801    COPY: attribute %0 in relation %1 doesn't  exist  or
  266.                   it has been listed twice
  267.  
  268.           5803    COPY: too many attributes
  269.  
  270.                   Each dummy domain and real domain listed in the copy
  271.                   statement  count as one attribute.  The limit is 150
  272.                   attributes.
  273.  
  274.           5804    COPY: bad length for attribute %0.  Length="%1"
  275.  
  276.           5805    COPY: can't open file %0
  277.  
  278.                   On a copy "from", the file is not  readable  by  the
  279.                   user.
  280.  
  281.           5806    COPY: can't create file %0
  282.  
  283.                   On a copy "into", the file is not creatable  by  the
  284.                   user.  This is usually caused by the user not having
  285.                   write permission in the specified directory.
  286.  
  287.           5807    COPY: unrecognizable dummy domain "%0"
  288.  
  289.                   On a copy "into", a dummy domain name is used to in-
  290.                   sert  certain  characters  into  the unix file.  The
  291.                   domain name given is not valid.
  292.  
  293.           5808    COPY: domain %0 size too small for conversion.
  294.                   There were %2 tuples  successfully  copied  from  %3
  295.                   into %4
  296.  
  297.                   When doing any copy except character  to  character,
  298.                   copy  checks  that the field is large enough to hold
  299.                   the value being copied.
  300.  
  301.           5809    COPY: bad input string  for  domain  %0.  Input  was
  302.                   "%1".  There were %2 tuples successfully copied from
  303.                   %3 into %4
  304.  
  305.                   This occurs when converting character strings to in-
  306.                   tegers  or  floating  point  numbers.  The character
  307.                   string contains something other than numeric charac-
  308.                   ters (0-9,+,-,blank,etc.).
  309.  
  310.           5810    COPY: unexpected end of file  while  filling  domain
  311.                   %0.
  312.                   There were %1 tuples  successfully  copied  from  %2
  313.                   into %3
  314.  
  315.           5811    COPY: bad type for attribute %0. Type="%1"
  316.  
  317.                   The only accepted types are i, f, c, and d.
  318.  
  319.           5812    COPY: The relation "%0" has a secondary index.   The
  320.                   index(es)  must  be  destroyed  before  doing a copy
  321.                   "from"
  322.  
  323.                   Copy cannot update secondary indices.  Therefore,  a
  324.                   copy "from" cannot be done on an indexed relation.
  325.  
  326.           5813    COPY: You are not allowed to update the relation %0
  327.  
  328.                   You cannot copy into a system relation or  secondary
  329.                   index.
  330.  
  331.           5814    COPY: You do not own the relation %0.
  332.  
  333.                   You cannot use copy to update a relation  which  you
  334.                   do  not  own.   A  copy "into" is allowed but a copy
  335.                   "from" is not.
  336.  
  337.           5815    COPY: An unterminated "c0" field occurred while fil-
  338.                   ling  domain  %0.  There were %1 tuples successfully
  339.                   copied from %2 into %3
  340.  
  341.                   A string read on a copy "from" using the "c0" option
  342.                   cannot be longer than 1024 characters.
  343.  
  344.           5816    COPY: The full pathname must be  specified  for  the
  345.                   file %0
  346.  
  347.                   The file name for copy must start with a "/".
  348.  
  349.           5817    COPY: The maximum width of the  output  file  cannot
  350.                   exceed 1024 bytes per tuple
  351.  
  352.                   The amount of data to be output to the file for each
  353.                   tuple  exceeds 1024.  This usually happens only if a
  354.                   format was mistyped or a lot of large dummy  domains
  355.                   were specified.
  356.  
  357.           5818    COPY: %0 is a view and can't be copied
  358.  
  359.                   Only physical relations can be copied.
  360.  
  361.           5819    COPY: Warning: %0 duplicate tuples were ignored.
  362.  
  363.                   On a copy "from", duplicate tuples were  present  in
  364.                   the relation.
  365.  
  366.           5820    COPY: Warning: %0  domains  had  control  characters
  367.                   which were converted to blanks.
  368.  
  369.           5821    COPY: Warning: %0 c0 character domains were truncat-
  370.                   ed.
  371.  
  372.                   Character domains in  c0  format  are  of  the  same
  373.                   length as the domain length.  You had a domain value
  374.                   greater than this length, and it was truncated.
  375.  
  376.           5822    COPY: Relation %0 is protected.
  377.  
  378.                   You are not authorized to access this relation.
  379.  
  380.  
  381.